From 579a2faac7031b7612970b616600ea9d6ac0f6f0 Mon Sep 17 00:00:00 2001 From: Markus Rost Date: Tue, 12 Nov 2002 01:41:25 +0000 Subject: [PATCH] (defgroup edt): Arrange that definition starts at beginning of line. --- lisp/emulation/edt.el | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/lisp/emulation/edt.el b/lisp/emulation/edt.el index 43b7b9ec6c1..ecb53bdffbf 100644 --- a/lisp/emulation/edt.el +++ b/lisp/emulation/edt.el @@ -166,13 +166,14 @@ ;;;; VARIABLES and CONSTANTS ;;;; -;; For backward compatibility to Emacs 19, skip this if defgroup is -;; not defined. -(if (fboundp 'defgroup) - (defgroup edt nil - "Emacs emulating EDT." - :prefix "edt-" - :group 'emulations)) +;; For backward compatibility to Emacs 19. +(or (fboundp 'defgroup) + (defmacro defgroup (&rest rest))) + +(defgroup edt nil + "Emacs emulating EDT." + :prefix "edt-" + :group 'emulations) ;;; ;;; Version Information -- 2.30.2